c60d78d097c2e7f98e53e94e58e70e9e85fb96a2,portal-web/test/functional/com/liferay/portalweb/portal/util/liferayselenium/LiferaySeleniumHelper.java,LiferaySeleniumHelper,typeFrame,#LiferaySelenium#String#String#,1557
Before Change
locator + "@title");
int x = titleAttribute.indexOf(",");
int y = titleAttribute.indexOf(",", x + 1);
if (y == -1) {
y = titleAttribute.length();
}
sb.append(titleAttribute.substring(x + 1, y));
sb.append(".setHTML(\"");
sb.append(HtmlUtil.escapeJS(value.replace("\\", "\\\\")));
After Change
String idAttribute = liferaySelenium.getAttribute(locator + "@id");
int x = idAttribute.indexOf("cke__");
int y = idAttribute.indexOf("cke__", x + 1);
if (y == -1) {
y = idAttribute.length();